bash# 创建环境(需预先安装Python)
python -m venv my_project_env
# 激活环境
# Windows:
.\my_project_env\Scripts\activate
# Linux/macOS:
source my_project_env/bin/activate
# 安装依赖包
pip install numpy pandas
# 退出环境
deactivate
bash# 创建指定Python版本的环境
conda create -n data_science_env python=3.9
# 激活环境
conda activate data_science_env
# 安装包含非Python依赖
conda install numpy pandas cudatoolkit=11.3
# 退出环境
conda deactivate
Conda 是一个开源的包管理系统和环境管理系统,主要用于科学计算和数据分析领域。它支持多种编程语言,但最常用于 Python。Conda 可以帮助用户轻松地安装、运行和更新软件包及其依赖项,同时还能创建和管理隔离的虚拟环境。
包管理:
环境管理:
跨平台支持:
bashconda create --name test1 python=3.9
bashfind /path/to/search -type f -size +2G
/path/to/search
:替换为你要搜索的目录路径。-type f
:仅查找文件,不包括目录。-size +2G
:筛选出大小超过 2GB 的文件。powershell(base) PS C:\Users\30372> wsl WSL 正在完成升级... Could not write value to key \SOFTWARE\Classes\Directory\shell\WSL. Verify that you have sufficient access to that key, or contact your support personnel. 更新失败(退出代码: 1603)。 错误代码: Wsl/CallMsi/Install/ERROR_INSTALL_FAILURE
在网上查找资料, 动不动就是改注册表, 重新安装, 这些方法在我看来,修改注册表是有一定风险的, 而重新安装治标不治本, 都不太靠谱🤔。
使用
Get-Service wuauserv
命令检查 Windows Update 服务, 根据分享和经验判断无法自动更新, 并使用wsl --update
命令手动都无法更新成功, 可能是wsl无法正常退出, 进程仍在启用, 导致无法更新成功.
powershelldism.exe /online /disable-feature /featurename:Microsoft-Windows-Subsystem-Linux /norestart dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /norestart
功能描述 | PowerShell 命令 | Linux 命令 |
---|---|---|
查看当前目录 | Get-Location | pwd |
列出目录内容 | Get-ChildItem | ls |
切换目录 | Set-Location <path> | cd <path> |
创建文件夹 | New-Item -ItemType Directory <name> | mkdir <name> |
创建文件 | New-Item <filename> | touch <filename> |
删除文件 | Remove-Item <filename> | rm <filename> |
复制文件/文件夹 | Copy-Item <source> <destination> | cp <source> <dest> |
移动文件/文件夹 | Move-Item <source> <destination> | mv <source> <dest> |
查看文件内容 | Get-Content <filename> | cat <filename> |
查找文件 | Get-ChildItem -Recurse -Filter <name> | find <path> -name <name> |
获取进程列表 | Get-Process | ps |
杀死进程 | Stop-Process -Id <PID> | kill <PID> |
查看服务状态 | Get-Service | systemctl status <service> |
启动服务 | Start-Service <service> | systemctl start <service> |
停止服务 | Stop-Service <service> | systemctl stop <service> |
列出网络接口 | Get-NetAdapter | ip a 或 ifconfig |
查看系统信息 | Get-ComputerInfo | uname -a |
获取帮助信息 | Get-Help <cmdlet> | man <command> |
环境变量 | $env:<Variable> | echo $<Variable> |
读取日志 | Get-EventLog | journalctl |
重启系统 | Restart-Computer | reboot |