-
Notifications
You must be signed in to change notification settings - Fork 4
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
Permission issues in Windows when using simple_python #137
Comments
Thanks for the interest in fafbseg @dpacheco0921 and for this report. I am not a Python expert but I think that one should not use |
I have next to zero experience with Python on Windows but yes, |
@dpacheco0921 , did you manage to fix this issue? |
I assume that you need to make the |
I also thought it was a permission issue in Windows, but the I basically installed manually the packages that failed by trying either of: |
Thanks that’s useful @dpacheco0921. Most likely it’s a lock issue then - two things trying to install the same package at once or more likely something trying to install a library that is already loaded and locked. So start a clean R session and do manual installs as Diego suggests:
You could also try:
which doesn't require defining any new functions and should still work. |
So, I think this (in a clean session) has a reasonable chance of working round this issue:
|
When running simple_python on windows 10, It successfully installs the dedicated miniconda python env for R, but I get the following error when installing CloudVolume:
Which I fixed by adding "--user" to the
pip_options = "--upgrade --prefer-binary --ignore-installed certifi")
hardcoded variable. However, I noticed that for installing some python packages (meshparty) it fails with "--user", but it works when I don't include "--user" in pip_options.So I was wondering if adding or not '--user' to pip_options could be an input variable to simple_python.
The text was updated successfully, but these errors were encountered: