最近事情真的是很多,自己的研究方向也变动很大,在一个转型期。整理自己的文档,看到自己记录的Linux常用命令,就暂时存博客吧,否则被仍在那个小角落就再也见不到了。
1.复制文件:
cp -r dir1 dir2
2.删除文件:
rm -rf dir1
3.将test.txt文件移动至dir1目录下
mv test.txt dir1
4.解压bz2压缩包
tar -xf **.tar.bz2
5.linux ubuntu su 认证失败
sudo passwd root
6.修改文件夹名,将x86-clang3.4改为x86-obfuscator4.0
mv x86-clang3.4 x86-obfuscator4.0
7.编辑某文件
gedit **.txt
8.普通用户切换超级用户
sudo su
9.如何查看Python版本
python -V
10.TensorFlow及其相关
安装特定版本的tensorflow
pip install tensorflow==1.4.1 (python2.7的版本,支持CPU)
pip3 install tensorflow==1.4.1 (python3.x的版本,支持CPU)
如果不需要特定版本
pip install tensorflow
pip3 install tensorflow
查看tensrflow的版本及测试
python
import tensorflow as tf
tf.__version__
sess = tf.Session()
hello=tf.constant('Hello,Tensorflow!')
print(sess.run(hello))
卸载Tensorflow
sudo pip uninstall tensorflow
参考自:https://www.cnblogs.com/wmr95/p/7500960.html
以后不定时更新。