You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing NPB you may run into an issue because of the urllib3 version.
This version needs to be manually changed to 1.26.6
after you have downloaded the package and try to run % python3 setup.py install
you might see something like this ---
This package cannot be safely installed by EasyInstall, and may not
support alternate installation locations even if you run its setup
script by hand. Please inform the package's author and the EasyInstall
maintainers to find out if a fix or workaround is available.
you can update the version by running the following :
% python3 -m pip install urllib3==1.26.6
After updating urllib3 version you should be able to run setup.py with no issues :
% python3 setup.py install
📚 Version of Software Used
1.5.0
🖥 System Info
OS: MacOS 13.6.2
🦄 Related requirements
⚙️ Engineering Details
The text was updated successfully, but these errors were encountered:
🐛 The bug
When installing NPB you may run into an issue because of the urllib3 version.
This version needs to be manually changed to 1.26.6
after you have downloaded the package and try to run % python3 setup.py install
you might see something like this ---
This package cannot be safely installed by EasyInstall, and may not
support alternate installation locations even if you run its setup
script by hand. Please inform the package's author and the EasyInstall
maintainers to find out if a fix or workaround is available.
you can update the version by running the following :
% python3 -m pip install urllib3==1.26.6
After updating urllib3 version you should be able to run setup.py with no issues :
% python3 setup.py install
📚 Version of Software Used
1.5.0
🖥 System Info
🦄 Related requirements
⚙️ Engineering Details
The text was updated successfully, but these errors were encountered: