Faq python config freezes at pip dependencies: Difference between revisions
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
===Possible Solutions:=== | ===Possible Solutions:=== | ||
====Conda Troubleshooting==== | |||
This seems to be a Miniconda issue when building the PLS_Toolbox virtual environment for the first time. It might also be worth noting we have only seen this on Windows machines so far (if you are running something different and encounter this, please let us know). Here is a workaround for those who have this issue in MATLAB: | This seems to be a Miniconda issue when building the PLS_Toolbox virtual environment for the first time. It might also be worth noting we have only seen this on Windows machines so far (if you are running something different and encounter this, please let us know). Here is a workaround for those who have this issue in MATLAB: | ||
# Get path to config_pyenv.m. | # Get path to config_pyenv.m. | ||
## From the MATLAB Command Window, type in the command <code>which config_pyenv</code> and enter. | ## From the MATLAB Command Window, type in the command <code>fileparts(which('config_pyenv.m'))</code> and enter. | ||
## Copy output of this command. | ## Copy output of this command. | ||
# Open Anaconda Powershell Prompt (Windows) or Terminal (macOS or Linux). | # Open Anaconda Powershell Prompt (Windows) or Terminal (macOS or Linux). | ||
Line 14: | Line 16: | ||
# Type <code>conda env create -f pls_toolbox_<platform>_38.yml</code> and enter. This may take several minutes depending on your machine. | # Type <code>conda env create -f pls_toolbox_<platform>_38.yml</code> and enter. This may take several minutes depending on your machine. | ||
## <platform> is one of either mac, windows, or linux, depending on what OS you are running. | ## <platform> is one of either mac, windows, or linux, depending on what OS you are running. | ||
## If you receive <code>CondaValueError: prefix already exists</code> while doing this step, the environment must be deleted in order to continue properly. One can do this by typing the command <code>conda remove -n pls_toolbox_<platform>_38</code>. Then repeat Step 5. | |||
# Next, type <code>conda activate pls_toolbox_<platform>_38</code> and enter. | # Next, type <code>conda activate pls_toolbox_<platform>_38</code> and enter. | ||
# Type <code>python</code> and enter. | # Type <code>python</code> and enter. | ||
Line 20: | Line 23: | ||
# Go back to the MATLAB command window. Type in <code>pyenv('Version','PASTE_OUTPUT_FROM_STEP_9_HERE','ExecutionMode','InProcess')</code> and enter. | # Go back to the MATLAB command window. Type in <code>pyenv('Version','PASTE_OUTPUT_FROM_STEP_9_HERE','ExecutionMode','InProcess')</code> and enter. | ||
# We then urge to rerun <code>config_pyenv</code> to see if this fixed the issue. | # We then urge to rerun <code>config_pyenv</code> to see if this fixed the issue. | ||
====Archived Solution==== | |||
Starting in 9.1, try the archived Python Configuration alternative. See [[Python configuration]] for more details. | |||
'''Still having problems? Please contact our helpdesk at [mailto:helpdesk@eigenvector.com helpdesk@eigenvector.com]''' | '''Still having problems? Please contact our helpdesk at [mailto:helpdesk@eigenvector.com helpdesk@eigenvector.com]''' | ||
[[Category:FAQ]] | [[Category:FAQ]] |
Latest revision as of 05:09, 7 August 2023
Issue:
Why does Python configuration freeze at the 'Installing pip dependencies...' step?
Possible Solutions:
Conda Troubleshooting
This seems to be a Miniconda issue when building the PLS_Toolbox virtual environment for the first time. It might also be worth noting we have only seen this on Windows machines so far (if you are running something different and encounter this, please let us know). Here is a workaround for those who have this issue in MATLAB:
- Get path to config_pyenv.m.
- From the MATLAB Command Window, type in the command
fileparts(which('config_pyenv.m'))
and enter. - Copy output of this command.
- From the MATLAB Command Window, type in the command
- Open Anaconda Powershell Prompt (Windows) or Terminal (macOS or Linux).
- Type
cd 'PASTE_OUTPUT_FROM_STEP_1_HERE'
and enter. - Type
cd ymls
and enter. - Type
conda env create -f pls_toolbox_<platform>_38.yml
and enter. This may take several minutes depending on your machine.- <platform> is one of either mac, windows, or linux, depending on what OS you are running.
- If you receive
CondaValueError: prefix already exists
while doing this step, the environment must be deleted in order to continue properly. One can do this by typing the commandconda remove -n pls_toolbox_<platform>_38
. Then repeat Step 5.
- Next, type
conda activate pls_toolbox_<platform>_38
and enter. - Type
python
and enter. - Type
import sys
and enter. - Type
sys.executable
and enter. Copy this output. - Go back to the MATLAB command window. Type in
pyenv('Version','PASTE_OUTPUT_FROM_STEP_9_HERE','ExecutionMode','InProcess')
and enter. - We then urge to rerun
config_pyenv
to see if this fixed the issue.
Archived Solution
Starting in 9.1, try the archived Python Configuration alternative. See Python configuration for more details.
Still having problems? Please contact our helpdesk at helpdesk@eigenvector.com