我对环境模块和在虚拟环境中运行 Python 非常陌生。我可以执行以下步骤并坚持如何进一步进行
我已经在 Windows 10 上安装了环境模块软件和 TCL。我已按照这些说明https://modules.readthedocs.io/en/latest/INSTALL-win.html
我已将 Python 3.8.5 安装到网络共享 S:\Python38
我已经创建了如下的模块文件。但是,当我通过运行“module load mymodulefile”加载它时,python 不会加载
*#%Module######################################################################
##
## Python 3.8.5 module
##
proc ModulesHelp { } {
puts stderr " Python 3.8.5 module"
}
module-whatis "Python 3.8.5"
set is_module_rm [module-info mode remove]
set BASEPATH /S/apps/python3.8.5WindowsVDI
prepend-path PATH $BASEPATH:$BASEPATH/Scripts*