We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to get gcspypi to install packages in my python3 environment. The following command seems to use pip instead of pip3:
gcspypi
pip
pip3
gcspypi --repository my-python-repository install some-module==0.1.0:
gcspypi --repository my-python-repository install some-module==0.1.0
Output:
using repository `my-python-repository connected installing some-module==0.1.0 Requirement already satisfied (use --upgrade to upgrade): redis>=3.3 in /Users/foobar/Library/Python/2.7/lib/python/site-packages Cleaning up... Requirement already satisfied (use --upgrade to upgrade): plotly>=4.3 in /Users/foobar/Library/Python/2.7/lib/python/site-packages
How do I get gcspypi to use pip3 instead of pip?!
The text was updated successfully, but these errors were encountered:
I created a PR to enable this to work in python3. I added a --python3 command line flag. See PR herE: #11
Sorry, something went wrong.
No branches or pull requests
I'm trying to get
gcspypi
to install packages in my python3 environment. The following command seems to usepip
instead ofpip3
:gcspypi --repository my-python-repository install some-module==0.1.0
:Output:
How do I get
gcspypi
to use pip3 instead of pip?!The text was updated successfully, but these errors were encountered: