If you face with any issues , please report it through the github issue page
Known-issues
SSL error
with the conda command
You may face with SSL ERROR when you run conda
copy.
You can deactivate SSL security.
For conda
copy :
- open the miniconda prompt
- type
conda config --set ssl_verify False
copy.
SSL error with the pip install command
Under a secure proxy, the command pip install .
copy may return an SSL warning.
To deactivate SSL checking, when you want to install a package with pip, add the following argument to your command : --trusted-host pypi.org --trusted-host files.pythonhosted.org
copy.
for instance:
- type
pip install . --trusted-host pypi.org --trusted-host files.pythonhosted.org
copy
‘viconnexusapi’ installation failed
Administrator rights might be necessary. Open the miniconda console in admin mode.
The issue ModuleNotFoundError simply indicates you have not installed both vicon-made packages (‘viconnexusapi’ or ‘viconnexusutils’) within your python environment.
These packages are located in the folder C:\Program Files\Vicon\Nexus2.15\SDK\Win64\Python
copy.
To fix this issue:
- open your miniconda prompt
- activate your environment (e.g
conda activate pycgm39
copy) - go to the folder
C:\Program Files\Vicon\Nexus2.15\SDK\Win64\Python
copy - type
install_vicon_nexus_api.bat
copy theninstall_vicon_nexus_utils.bat
copy
this will install the packages in your site-packages folder (\Miniconda3\envs\(virtualEnvName)\Lib\site-packages
copy)