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
Issue observed on Windows with conda-pack 0.7.1
I extracted a packed environment to a folder located in "C:\Program Files". The same issue can be reproduced with any folder containing a whitespace.
Then I executed "conda-unpack" in the Scripts folder.
Afterwards most of the executables in "Scripts" do not run.
C:\Program Files\MORe\env\Scripts>pip failed to create process.
Manually adding quotes around the path in the shebang of pip-script.py fixes the issue. #!"C:\Program Files\MORe\env\python.exe"
#!"C:\Program Files\MORe\env\python.exe"
Adding the following code below line 66 in the conda-unpack-script.py also creates a working environment. new_prefix = '"' + new_prefix + '"'
new_prefix = '"' + new_prefix + '"'
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
What happened?
Issue observed on Windows with conda-pack 0.7.1
I extracted a packed environment to a folder located in "C:\Program Files". The same issue can be reproduced with any folder containing a whitespace.
Then I executed "conda-unpack" in the Scripts folder.
Afterwards most of the executables in "Scripts" do not run.
Manually adding quotes around the path in the shebang of pip-script.py fixes the issue.
#!"C:\Program Files\MORe\env\python.exe"
Adding the following code below line 66 in the conda-unpack-script.py also creates a working environment.
new_prefix = '"' + new_prefix + '"'
Conda Info
No response
Conda Config
No response
Conda list
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: