快捷/实用技能
作者:互联网
计算机快捷/实用技能
Linux
- 按秒定时显示命令
watch -n 1 command
- 倒叙查看文档
less filename
然后同时按住shift+space
- 解压文件 tar.gz
tar -zxvf filename.tar.gz
- 传输文件 软件:winscp,或者scp命令
scp -r username@ip_address:filedir filedir
- 重定向启动
nohup command
- 查看当前文件路径
Windows
conda
- 创建新环境
conda create -n your_conda_name python=3.7_version
- 激活环境
conda activte your_conda_name
- 删除环境
conda remove your_conda_name -all
- 查看安装包
conda list
- 查看已有环境
conda env list
Pytorch
- 查看cuda是否可用
torch.cuda.is_available()
- 自动使用cuda或者cpu(cuda优先)
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')
python
- 查看当前路径
import os
os.getcwd()
- 查看文件夹下的文件
os.listdir(filedir)
- 忽略warning
import warnings
warnings.filterwarnings("ignore")
colab
- 挂载google_drive
from google.colab import drive
drive.mount('/content/gdrive')
- 使用terminal
!command
标签:name,查看,filedir,torch,实用,conda,cuda,快捷,技能 来源: https://blog.csdn.net/qq_38241346/article/details/111386387