env

1.安装apache

sudo apt-get install tasksel
sudo tasksel install lamp-server (apache,php,mysql)

 
 

2.enable rewrite 模块

cd /etc/apache2/mods-enabled
sudo ln -s ../mods-available/rewrite.load


3.创建虚拟主机配置文件:

(1)cd /etc/apache2/sites-avaliable中,创建xxx.test.com

(2)文件内容:

<VirtualHost *:80>

        ServerName jsli.django.com

        ServerAlias jsli.django.com
        ServerAdmin webmaster@localhost
        RewriteEngine On
        RewriteOptions Inherit
        WSGIScriptAlias / /srv/api/dj_dev/dj_dev/wsgi.py #这个文件,是django startproject 自动生成的,enable 执行python必须要这句
        DocumentRoot /srv/api/dj_dev
        <Directory /srv/api/dj_dev>
                Options -Indexes FollowSymLinks
                AllowOverride All
                Order allow,deny
                Allow from all
        </Directory>
        ErrorLog /var/log/apache2/jsli.django.com-error.log
        CustomLog /var/log/apache2/jsli.django.com-access.log   combined
</VirtualHost>

(3)cd /etc/apache2/sites-enabled

sudo ln -s ../sites-avalibale/xxx.test.com

(4)增加host映射

sudo vim /etc/hosts

添加: 127.0.0.1         xxx.test.com

(5)重启apache

sudo /etc/init.d/apache2 reload #重载配置

sudo /etc/init.d/apache2 restart #重启 apache


4.apache 运行python

(1)mod_python方式

通过lamp-server安装apache,是不带有mod python模块的

需要安装mod_python模块

获取mod_python

Mod_Python (http://www.modpython.org/)
wget http://archive.apache.org/dist/httpd/modpython/mod_python-3.3.1.tgz

先安装依赖:apxs

sudo apt-get install apache2-dev,就会安装apxs2到/usr/bin/下

编译mod_python包

./configure --with-apxs2=/usr/bin/apxs2 --with-python=/usr/bin/python

make 
sudo make install
注意:编译是会有这个错误

connobject.c:142: error: request for member ‘next’ in something not a structure or union
apxs:Error: Command failed with rc=65536
修改:
vim src/connobject.c142行:

!(b == APR_BRIGADE_SENTINEL(b) || 改为

     
!(b == APR_BRIGADE_SENTINEL(bb) ||

enable mod_python

编译通过,会在/usr/lib/apache2/modules生成mod_python.so

按照之前rewrite.load,写一个python.load


(2)mod_wsgi方式运行python(推荐!)

从以下地址获取源码包:

解压,安装:

./configure --with-apxs2=/usr/bin/apxs2 --with-python=/usr/bin/python

make (fatal error: Python.h: No such file or directory, 需要安装 python-dev)
sudo make install


按照之前rewrite.load,写一个python.load,并在mod-enabled中创建链接

在/srv/api/中,使用django startproject dj_dev创建一个工程。
修改dj_dev/dj_dev/wsgi.py文件,增加代码:
path = '/srv/api/dj_dev/'
if path not in sys.path:
    sys.path.append(path)
否则,访问xxx.test.com时会报500错误,因为python的sys.path找不到settings文件

访问xxx.test.com,就可以看到django的It works!



5.django的安装

python setup.py install

(1)mysqldb engine安装

#http://www.djangoproject.com/r/python-mysql/
http://sourceforge.net/projects/mysql-python/?source=dlp(下载1.2.4,否则会有ImportError: cannot import name conversions)
下载zip包后:sudo python setup.py install

6.django中mongodb支持

(1)安装mongoengine

sudo pip install mongoengine
sudo easy_install -U mongoengine



7.安装setuptools

sudo apt-get install python-setuptools


8.安装pip

sudo apt-get install python-pip


9.eclipse 安装pydev 插件

直接在Eclipse中选择菜单:Help—Software Updates—Find And Install,选择 Search for new features to intall,点 New Remote Site 按钮,输入http://pydev.org/updates,下载并安装。

1.E:\Program Files\NVIDIA\CUNND\v9.12里面有bin cudnn samples include lib LICENSE,里面还有子文件12.9和13.0,mdll都在bin,h再include,E:\Program Files\NVIDIA\CUNND\v9.12\lib\13.0\x64里面是lib,12.9同样 2.Set-PythonEnv: C:\Users\Administrator\Documents\PowerShell\Microsoft.PowerShell_profile.ps1:5 Line | 5 | Set-PythonEnv -EnvName global | ~~~~~~~~~~~~~ | The term 'Set-PythonEnv' is not recognized as a name of a cmdlet, function, script file, or executable program. | Check the spelling of the name, or if a path was included, verify that the path is correct and try again. Set-PythonEnv: C:\Users\Administrator\Documents\PowerShell\Microsoft.PowerShell_profile.ps1:5 Line | 5 | Set-PythonEnv -EnvName global | ~~~~~~~~~~~~~ | The term 'Set-PythonEnv' is not recognized as a name of a cmdlet, function, script file, or executable program. | Check the spelling of the name, or if a path was included, verify that the path is correct and try again. PS C:\Users\Administrator\Desktop> cd E:\PyTorch_Build\pytorch PS E:\PyTorch_Build\pytorch> python -m venv rtx5070_env Error: [Errno 13] Permission denied: 'E:\\PyTorch_Build\\pytorch\\rtx5070_env\\Scripts\\python.exe' PS E:\PyTorch_Build\pytorch> .\rtx5070_env\Scripts\activate (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 路径验证脚本 (validate_paths.ps1) (rtx5070_env) PS E:\PyTorch_Build\pytorch> $tools = @{ >> "Python" = "E:\Python310\python.exe" >> "Git" = "E:\Program Files\Git\bin\git.exe" >> "CUDA" = "E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\" >> "cuDNN" = "E:\Program Files\NVIDIA\cuDNN\v9.12\" >> "OpenBLAS_Prebuilt" = "E:\Libs\OpenBLAS_Prebuilt\lib\openblas.lib" >> "CMake" = "E:\Program Files\CMake\bin\cmake.exe" >> "Ninja" = "E:\PyTorch_Build\pytorch\rtx5070_env\Scripts\ninja.exe" >> } (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> foreach ($tool in $tools.GetEnumerator()) { >> $exists = Test-Path $tool.Value -ErrorAction SilentlyContinue >> $status = if ($exists) { "✅ 验证通过" } else { "❌ 路径不存在" } >> Write-Host ("{0,-20} {1,-60} {2}" -f $tool.Key, $tool.Value, $status) >> } cuDNN E:\Program Files\NVIDIA\cuDNN\v9.12\ ❌ 路径不存在 OpenBLAS_Prebuilt E:\Libs\OpenBLAS_Prebuilt\lib\openblas.lib ✅ 验证通过 Git E:\Program Files\Git\bin\git.exe ✅ 验证通过 CUDA E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\ ✅ 验证通过 Ninja E:\PyTorch_Build\pytorch\rtx5070_env\Scripts\ninja.exe ✅ 验证通过 CMake E:\Program Files\CMake\bin\cmake.exe ✅ 验证通过 Python E:\Python310\python.exe ✅ 验证通过 (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 特殊验证:OpenBLAS库文件 (rtx5070_env) PS E:\PyTorch_Build\pytorch> if (Test-Path $tools["OpenBLAS_Prebuilt"]) { >> Write-Host "OpenBLAS库验证通过: $($tools['OpenBLAS_Prebuilt'])" -ForegroundColor Green >> } else { >> Write-Host "错误:OpenBLAS库文件未找到" -ForegroundColor Red >> # 自动搜索备用路径 >> $found = Get-ChildItem "E:\Libs\" -Recurse -Filter "openblas.lib" | Select-Object -First 1 >> if ($found) { >> Write-Host "发现备用路径: $($found.FullName)" -ForegroundColor Yellow >> $env:OpenBLAS_HOME = $found.Directory.Parent.FullName >> } >> } OpenBLAS库验证通过: E:\Libs\OpenBLAS_Prebuilt\lib\openblas.lib (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 修复PowerShell配置文件 (fix_profile.ps1) (rtx5070_env) PS E:\PyTorch_Build\pytorch> $profilePath = "C:\Users\Administrator\Documents\PowerShell\Microsoft.PowerShell_profile.ps1" (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 备份原始配置文件 (rtx5070_env) PS E:\PyTorch_Build\pytorch> $backupPath = "$profilePath.backup_$(Get-Date -Format 'yyyyMMdd')" (rtx5070_env) PS E:\PyTorch_Build\pytorch> Copy-Item $profilePath $backupPath -Force (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 修正配置文件内容 (rtx5070_env) PS E:\PyTorch_Build\pytorch> (Get-Content $profilePath) | ForEach-Object { >> # 修复Set-PythonEnv调用问题 >> if ($_ -match "Set-PythonEnv -EnvName global") { >> '# ' + $_ + " # 已禁用此问题命令" >> } >> # 添加模块自动加载 >> elseif ($_ -match "Export-ModuleMember") { >> $_ + "`nImport-Module $PSScriptRoot\EnvManager -Force" >> } >> else { >> $_ >> } >> } | Set-Content $profilePath (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 创建模块加载器 (rtx5070_env) PS E:\PyTorch_Build\pytorch> $modulePath = "C:\Users\Administrator\Documents\PowerShell\Modules\EnvManager" (rtx5070_env) PS E:\PyTorch_Build\pytorch> New-Item -ItemType Directory -Path $modulePath -Force | Out-Null (rtx5070_env) PS E:\PyTorch_Build\pytorch> @" >> # EnvManager.psm1 >> function Set-PythonEnv { >> # 修正后的实现代码... >> } >> >> Export-ModuleMember -Function Set-PythonEnv >> "@ | Set-Content "$modulePath\EnvManager.psm1" (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "PowerShell配置文件已修复,问题命令已注释" -ForegroundColor Green PowerShell配置文件已修复,问题命令已注释 (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 禁用WSL更新提示 (disable_wsl_prompt.ps1) (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 方法1:注册表禁用 (rtx5070_env) PS E:\PyTorch_Build\pytorch> New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModel\StateChange" ` >> -Name "DisableWSLUpdateNotification" ` >> -Value 1 ` >> -PropertyType DWORD ` >> -Force DisableWSLUpdateNotification : 1 PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curren tVersion\AppModel\StateChange PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curren tVersion\AppModel PSChildName : StateChange PSDrive : HKLM PSProvider : Microsoft.PowerShell.Core\Registry (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 方法2:修改VS Code设置 (rtx5070_env) PS E:\PyTorch_Build\pytorch> $vscodeSettings = @{ >> "wsl.deprecated" = @{ >> "showDeprecatedNotification" = $false >> }; >> "extensions.ignoreRecommendations" = $true; >> } (rtx5070_env) PS E:\PyTorch_Build\pytorch> $json = $vscodeSettings | ConvertTo-Json -Depth 3 (rtx5070_env) PS E:\PyTorch_Build\pytorch> Set-Content -Path "$env:APPDATA\Code\User\settings.json" -Value $json (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 方法3:禁用WSL服务(如果不使用) (rtx5070_env) PS E:\PyTorch_Build\pytorch> Stop-Service "LxssManager" -Force Stop-Service: Cannot find any service with service name 'LxssManager'. (rtx5070_env) PS E:\PyTorch_Build\pytorch> Set-Service "LxssManager" -StartupType Disabled Set-Service: Service 'LxssManager' was not found on computer '.'. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "WSL更新提示已禁用" -ForegroundColor Green WSL更新提示已禁用 (rtx5070_env) PS E:\PyTorch_Build\pytorch> sequenceDiagram sequenceDiagram: The term 'sequenceDiagram' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> participant 用户 participant: The term 'participant' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> participant PowerShell participant: The term 'participant' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> participant VS Code participant: The term 'participant' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> 用户->>PowerShell: 运行 validate_paths.ps1 用户->>PowerShell:: The term '用户->>PowerShell:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell->>系统: 验证所有工具路径 PowerShell->>系统:: The term 'PowerShell->>系统:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell-->>用户: 显示验证结果 PowerShell-->>用户:: The term 'PowerShell-->>用户:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> 用户->>PowerShell: 运行 fix_profile.ps1 用户->>PowerShell:: The term '用户->>PowerShell:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell->>系统: 修复配置文件 PowerShell->>系统:: The term 'PowerShell->>系统:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell-->>用户: 确认修复完成 PowerShell-->>用户:: The term 'PowerShell-->>用户:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> 用户->>PowerShell: 运行 disable_wsl_prompt.ps1 用户->>PowerShell:: The term '用户->>PowerShell:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell->>系统: 禁用WSL提示 PowerShell->>系统:: The term 'PowerShell->>系统:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> PowerShell-->>用户: 确认禁用成功 PowerShell-->>用户:: The term 'PowerShell-->>用户:' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> 用户->>VS Code: 启动 用户->>VS: The term '用户->>VS' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> VS Code-->>用户: 无WSL提示 VS: The term 'VS' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> # 最终验证脚本 (final_check.ps1) (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "=== 环境路径验证 ===" -ForegroundColor Cyan === 环境路径验证 === (rtx5070_env) PS E:\PyTorch_Build\pytorch> .\validate_paths.ps1 .\validate_paths.ps1: The term '.\validate_paths.ps1' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "`n=== PowerShell问题验证 ===" -ForegroundColor Cyan === PowerShell问题验证 === (rtx5070_env) PS E:\PyTorch_Build\pytorch> if (Get-Command Set-PythonEnv -ErrorAction SilentlyContinue) { >> Write-Host "环境切换功能正常" -ForegroundColor Green >> } else { >> Write-Host "环境切换功能修复失败" -ForegroundColor Red >> } 环境切换功能正常 (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "`n=== 核心问题验证 ===" -ForegroundColor Cyan === 核心问题验证 === (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "1. 环境隔离:" 1. 环境隔离: (rtx5070_env) PS E:\PyTorch_Build\pytorch> Switch-Environment Global Switch-Environment: The term 'Switch-Environment' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> Switch-Environment PyTorch Switch-Environment: The term 'Switch-Environment' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "`n2. 依赖锁定:" 2. 依赖锁定: (rtx5070_env) PS E:\PyTorch_Build\pytorch> Lock-Dependencies Lock-Dependencies: The term 'Lock-Dependencies' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "依赖锁定状态: $(if (Test-Dependencies) {'✅ 正常'} else {'❌ 异常'})" Test-Dependencies: The term 'Test-Dependencies' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. 依赖锁定状态: (rtx5070_env) PS E:\PyTorch_Build\pytorch> (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "`n3. 路径污染:" 3. 路径污染: (rtx5070_env) PS E:\PyTorch_Build\pytorch> Clean-Path Clean-Path: The term 'Clean-Path' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (rtx5070_env) PS E:\PyTorch_Build\pytorch> Write-Host "当前PATH: $($env:PATH -replace ';', "`n")" 当前PATH: E:\PyTorch_Build\pytorch\rtx5070_env\Scripts C:\Program Files\PowerShell\7 E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin E:\Program Files\NVIDIA\CUNND\v9.12\bin\13.0 E:\Program Files\NVIDIA\CUNND\v9.12\lib\13.0\x64 E:\Program Files\CMake\bin C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\bin\Hostx64\x64 E:\Python310\Scripts E:\PyTorch_Build\pytorch\rtx5070_env\Scripts C:\Program Files\PowerShell\7 C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.1\bin C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.1\libnvvp C:\Miniconda3\condabin C:\Miniconda3\Scripts E:\PyTorch_Build\pytorch\pytorch_env\Scripts C:\Program Files\PowerShell\7 E:\PyTorch_Build\pytorch\pytorch_env\Scripts C:\Program Files\PowerShell\7 E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64 E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64 E:\PyTorch_Build\pytorch\build\lib.win-amd64-cpython-310\torch\lib E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin E:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin C:\Users\Administrator\AppData\Local\Microsoft\dotnet C:\Users\Administrator\AppData\Local\Microsoft\dotnet C:\Users\Administrator\AppData\Local\Microsoft\dotnet\ C:\Program Files\dotnet C:\WINDOWS\system32 C:\WINDOWS C:\WINDOWS\System32\Wbem C:\WINDOWS\System32\WindowsPowerShell\v1.0\ C:\WINDOWS\System32\OpenSSH\ E:\Python310 C:\Program Files\dotnet\ C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools E:\Python310\Scripts E:\Python310\Scripts C:\Program Files\PowerShell\7\ E:\Program Files\Microsoft VS Code\bin E:\Program Files\Git\cmd C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0\ E:\Program Files\CMake\bin C:\Program Files\Microsoft SQL Server\150\Tools\Binn\ C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\ C:\Program Files (x86)\Incredibuild E:\PyTorch_Build\pytorch\build\lib.win-amd64-cpython-310\torch\lib E:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\ C:\ProgramData\chocolatey\bin E:\Program Files\Rust\.cargo\bin C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools C:\Users\Administrator\miniconda3\Scripts E:\Program Files\Rust\.cargo\bin C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools C:\Users\Administrator\miniconda3\Scripts E:\Program Files\Rust\.cargo\bin C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools C:\ProgramData\mingw64\mingw64\bin E:\Program Files\7-Zip C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64 E:\Program Files\7-Zip E:\Program Files\Rust\.cargo\bin C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps C:\Users\Administrator\.dotnet\tools C:\ProgramData\mingw64\mingw64\bin (rtx5070_env) PS E:\PyTorch_Build\pytorch>
最新发布
09-04
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值