Skip to content
New issue

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

./toolchain.py pip install ignoring modules installed in conda environment #347

Closed
ssolari opened this issue Jan 25, 2019 · 2 comments
Closed

Comments

@ssolari
Copy link
Contributor

ssolari commented Jan 25, 2019

Using a base conda environment to build kivy-ios. If a module already exists it is ignored by pip.

pip_args = ["--isolated", "--prefix", ctx.python_prefix]

Fix for us was adding --ignore-installed above as

pip_args = ["--isolated", "--ignore-installed", "--prefix", ctx.python_prefix] 
@hackalog
Copy link
Contributor

Nice catch. I have exactly that diff in my tree, and had totally forgotten about why I had put it there.

@tito
Copy link
Member

tito commented Feb 7, 2019

Fixed via #349

@tito tito closed this as completed Feb 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants