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
Performing an installation in a virtual environment and ignoring SSL certificate errors helped overcome installation problems. Below were the steps I performed:
Performing an installation in a virtual environment and ignoring SSL certificate errors helped overcome installation problems. Below were the steps I performed:
https://www.jeansnyman.com/posts/python-pip-install-ssl-certificate-error/
python3 -m venv /~/profilewiz/
source profilewiz/bin/activate.csh
cd profilewiz
pip3 install --trusted-host pypi.org --trusted-host files.pythonhosted.org -r requirements.txt
cd ..
pip3 install -e profilewiz --trusted-host pypi.org --trusted-host files.pythonhosted.org
cd profilewiz
python3 profilewiz.py --help
The text was updated successfully, but these errors were encountered: