其他分享
首页 > 其他分享> > 快捷/实用技能

快捷/实用技能

作者:互联网

计算机快捷/实用技能

Linux

  1. 按秒定时显示命令
watch -n 1 command
  1. 倒叙查看文档
less filename
然后同时按住shift+space
  1. 解压文件 tar.gz
tar -zxvf filename.tar.gz
  1. 传输文件 软件:winscp,或者scp命令
scp -r username@ip_address:filedir filedir 
  1. 重定向启动
nohup command
  1. 查看当前文件路径

Windows

conda

  1. 创建新环境
conda create -n your_conda_name python=3.7_version
  1. 激活环境
conda activte your_conda_name
  1. 删除环境
conda remove your_conda_name -all
  1. 查看安装包
conda list
  1. 查看已有环境
conda env list

Pytorch

  1. 查看cuda是否可用
torch.cuda.is_available()
  1. 自动使用cuda或者cpu(cuda优先)
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')

python

  1. 查看当前路径
import os
os.getcwd()
  1. 查看文件夹下的文件
os.listdir(filedir)
  1. 忽略warning
import warnings
warnings.filterwarnings("ignore")

colab

  1. 挂载google_drive
from google.colab import drive
drive.mount('/content/gdrive')
  1. 使用terminal !command

标签:name,查看,filedir,torch,实用,conda,cuda,快捷,技能
来源: https://blog.csdn.net/qq_38241346/article/details/111386387