@scrypted/server 0.7.31 → 0.7.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @scrypted/server might be problematic. Click here for more details.
- package/package.json +1 -1
- package/python/plugin_remote.py +3 -2
package/package.json
CHANGED
package/python/plugin_remote.py
CHANGED
@@ -374,12 +374,13 @@ class PluginRemote:
|
|
374
374
|
# to fail because pip only allows filtering on machine, even if running a different architeture.
|
375
375
|
# this will cause prebuilt wheel installation to fail.
|
376
376
|
if platform.machine() == 'aarch64' and platform.architecture()[0] == '32bit':
|
377
|
-
print('
|
377
|
+
print('=============================================')
|
378
|
+
print('Python machine vs architecture mismatch detected. Plugin installation may fail.')
|
378
379
|
print('If Scrypted is running in docker, the docker version may be 32bit while the host kernel is 64bit.')
|
379
380
|
print('This may be resolved by reinstalling a 64bit docker.')
|
380
381
|
print('The docker architecture can be checked with the command: "file $(which docker)"')
|
381
382
|
print('The host architecture can be checked with: "uname -m"')
|
382
|
-
|
383
|
+
print('=============================================')
|
383
384
|
|
384
385
|
python_version = 'python%s' % str(
|
385
386
|
sys.version_info[0])+"."+str(sys.version_info[1])
|