File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -115,9 +115,8 @@ This can be enabled per environment using the following commands:
115
115
116
116
CONDA_SUBDIR=osx-64 conda create -n your_environment_name python # Create a new environment called your_environment_name with intel packages.
117
117
conda activate your_environment_name
118
- conda env config vars set CONDA_SUBDIR=osx-64 # Make sure that conda commands in this environment use intel packages.
119
- conda deactivate
120
- conda activate your_environment_name
118
+ python -c " import platform;print(platform.machine())" # Confirm that the correct values are being used.
119
+ conda config --env --set subdir osx-64 # Make sure that conda commands in this environment use intel packages.
121
120
122
121
To verify that the correct platform is being used, run the following commands after the environment has been activated:
123
122
You can’t perform that action at this time.
0 commit comments