linux
cheney康
中山大学计算机学院研究生
展开
-
linux 开发机服务器和hdfs集群中断程序命令
一、开发机服务器当我们使用 ctrl + c、ctrl + d、ctrl + \ 都无法中断程序的时候,可以用一下方法:打开新的终端(登陆服务器),输入命令grep后面加名字或者运行程序的关键字搜索ps -aux |grep 名字可以看到程序26366正在运行,kill掉即可:kill 27366二、hdfs集群qdel jobid ...原创 2018-07-11 16:38:50 · 374 阅读 · 0 评论 -
Linux上创建虚拟环境 Virtualenv
1.安装virtualenvpip3 install virtualenv2.创建环境mkdir myprojectcd myprojectvirtualenv venv在创建virtualenv时增加 --no-site-packages 选项的virtualenv就不会读取系统包,如下:virtualenv nowamagic_venv --no-site...原创 2018-12-20 16:06:25 · 1046 阅读 · 2 评论 -
Linux非root用户在服务器安装Anaconda
# Python 3.5$ wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh # 64位系统$ wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86.sh # 32位系统# Python 2.7$ wge...原创 2018-12-24 19:07:20 · 4344 阅读 · 0 评论 -
Linux非root用户在服务器安装cuda8.0
ubuntu 16.04安装cuda8.0一、下载cuda文件安装:sh cuda_8.0.61_375.26_linux.run这里因为是非root用户,所以要写入自己的安装目录,而不是用默认的路径:配置环境:按‘i"进入编辑模式。在空白处添加如下:检查版本: ...原创 2019-01-04 17:10:32 · 2269 阅读 · 3 评论 -
Linux非root用户服务器安装cudnn5.1
下载后解压:copy检查版本原创 2019-01-04 17:13:54 · 656 阅读 · 0 评论