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 python2 and python3 are installed, pip install -r requirements.txt attempts to install the requirements with python2. Python3 is needed to install qiskit, so pip3 must be used instead.
Also, might run into an environment error due to permissions, --user at the end can be used to get around this.
The final command needed:
pip3 install -r requirements --user
The text was updated successfully, but these errors were encountered:
When python2 and python3 are installed, pip install -r requirements.txt attempts to install the requirements with python2. Python3 is needed to install qiskit, so pip3 must be used instead.
Also, might run into an environment error due to permissions, --user at the end can be used to get around this.
The final command needed:
pip3 install -r requirements --user
The text was updated successfully, but these errors were encountered: