Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.

Hardcoded windows paths in scripts in Intel® Distribution for Python 2017 Update 2

gaston-hillar
重要分销商 I
1,367 次查看

The activate and deactivate scripts included in Intel® Distribution for Python 2017 Update 2 for Windows include hardcoded Windows paths that don't allow the scripts to work as expected.

If you go to the Scripts folder and check the contents of the activate.bat file, you will find a hardcoded path C:\TCAgent1\tools\Miniconda3\Scripts

The following is the content for the activate.bat file:

@echo off
call "C:\TCAgent1\tools\Miniconda3\Scripts\activate" %*

The following is the content for the deactivate.bat file:

@echo off
call "C:\TCAgent1\tools\Miniconda3\Scripts\deactivate" %*

The activate and deactivate files that are not intended to be executed on Windows also have the same Windows hardcoded path.

The contents for the files with the same names included in the pkgs\conda-4.2.12-py27_intel_0\Scripts folder also have the same issues.

0 项奖励
1 解答
Todd_T_Intel
员工
1,367 次查看

Gaston,

Thank you for bringing this to our attention. We are working on a fix for this.

In the meantime, you can install an updated conda package from the default channel on anaconda.org:

<path_to_install_dir>\Scripts\conda install conda=4.2.12=py27_0
That command will replace the existing "conda" package with the same version from the "defaults" channel, which does not have the problem.

Thank you for your understanding.

Todd

在原帖中查看解决方案

0 项奖励
6 回复数
gaston-hillar
重要分销商 I
1,367 次查看

This thread is related to another thread that was started with a different description. I've created this thread as a bug report because I've checked an there is a bug with the Windows version. The following is the related thread: https://software.intel.com/en-us/forums/intel-distribution-for-python/topic/721042

It is a very important issue because the hardcoded path doesn't allow the activate and deactivate scripts to run. I haven't tested it, but it might also affect other OSs in case the same source was used.

0 项奖励
gaston-hillar
重要分销商 I
1,367 次查看

Just to clarify, activate.bat works without issues in Intel® Distribution for Python 2017 Update 2 - Python 3.5.2. The problem is only with Python 2.7.12.

 

0 项奖励
Todd_T_Intel
员工
1,368 次查看

Gaston,

Thank you for bringing this to our attention. We are working on a fix for this.

In the meantime, you can install an updated conda package from the default channel on anaconda.org:

<path_to_install_dir>\Scripts\conda install conda=4.2.12=py27_0
That command will replace the existing "conda" package with the same version from the "defaults" channel, which does not have the problem.

Thank you for your understanding.

Todd

0 项奖励
gaston-hillar
重要分销商 I
1,367 次查看

Hi Todd,

I've run the command you explained and it works OK. Thanks for your workaround. It is extremely helpful.

0 项奖励
Todd_T_Intel
员工
1,367 次查看

Follow-up:

There is a fixed version of the Windows conda package for python 2.7 available on the Intel channel on anaconda.org under a special label. You can install the fixed package from the command prompt with the following command:

> conda install conda=4.2.12 -c intel/label/conda

Todd

0 项奖励
gaston-hillar
重要分销商 I
1,367 次查看

Hi Todd,

Thanks for the follow up.

0 项奖励
回复