ERROR: No matching distribution found for pymcubes
摘要:(pytorch3drecgan) ubuntu@ubuntu:~/lcx/3D-RecGAN-pytorch-masterv3$ pip install pymcubesWARNING: Keyring is skipped due to an exception: Failed to unloc
阅读全文
posted @
2024-04-03 20:17
chamie
阅读(122)
推荐(0) 编辑
虚拟环境bin/python: bad interpreter: No such file or directory
摘要:(pytorch3drecgan) ubuntu@ubuntu:~$ pip-bash: /home/ubuntu/anaconda3/envs/pytorch3drecgan/bin/pip: /home/liucaixia/anaconda3/envs/pytorch3drecgan/bin/p
阅读全文
posted @
2024-04-03 18:22
chamie
阅读(82)
推荐(0) 编辑
ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out.
摘要:pip install open3d 错误:ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. 解决办法:pip --default-timeout=500 install open3d
阅读全文
posted @
2024-04-03 18:22
chamie
阅读(16)
推荐(0) 编辑
ubuntu上挂载硬盘
摘要:1.查看新硬盘的uuid sudo blkid 2.在etc目录下 sudo vim /etc/fstab 添加: UUID="*********" /mnt/volume6 ext4 rw,noatime,nodiratime,nodev,exec,nosuid,nofail,auto 1 2 3
阅读全文
posted @
2022-01-21 22:10
chamie
阅读(93)
推荐(0) 编辑
fatal: unable to access 'https://github.com/NVIDIA/apex.git/
摘要:git clone https://github.com/NVIDIA/apex.git/ 遇到fatal: unable to access 'https://github.com/NVIDIA/apex.git/问题时 可以将https换为git
阅读全文
posted @
2021-09-08 13:46
chamie
阅读(1074)
推荐(0) 编辑
pip install git+
摘要:pip 从 git 源码仓库直接 install 安装git仓库中的包 pip install git+<git仓库地址> pip install git+<git仓库地址>@<分支名称>
阅读全文
posted @
2021-07-20 14:48
chamie
阅读(760)
推荐(0) 编辑
GPU问题: Linux 无进程显存占用问题
摘要:在linux命令行中键入nvidia-smi,显示没有进程但是GPU显存却使用很多产生原因:历史进程未杀死 解决方案:用下面命令查看后台占用进程: fuser -v /dev/nvidia* 然后kill掉 kill -9 进程号
阅读全文
posted @
2021-04-22 16:35
chamie
阅读(1717)
推荐(0) 编辑
Mobaxterm远程图形界面
摘要:*****用root用户 pycharm和blender都可以打开。
阅读全文
posted @
2021-04-01 09:14
chamie
阅读(506)
推荐(0) 编辑
ubuntu升级之后,GCC或者G++找不到
摘要:转载:https://blog.csdn.net/jun626/article/details/90315058 之前看见Ubuntu有提示系统升级,从16升级到18,当时也没多想,直接就升级了。 但是编译UBOOT源码的时候发现不能使用了,原因是GCC版本太高了,必须要回去才行 查看版本信息 ro
阅读全文
posted @
2020-02-26 21:39
chamie
阅读(2002)
推荐(0) 编辑
Linux:解压文件系列
摘要:1.解压.tgz文件: (1)解压到当前文件夹 命令:tar zxvf 文件名.tgz -C ./ (2)解压到指定文件夹下 命令:tar zxvf 文件名.tgz -C /指定路径
阅读全文
posted @
2019-12-31 17:44
chamie
阅读(2841)
推荐(0) 编辑
cp复制
摘要:将Data文件复制到B目录下: cp -r /home/hp/Data /home/hp/B/
阅读全文
posted @
2019-07-14 11:49
chamie
阅读(318)
推荐(0) 编辑
Ubuntu命令行快捷启动Pycharm
摘要:转载:https://www.cnblogs.com/happystudyeveryday/p/10324590.html pycharm安装目录为/home/dell/pycharm-community-2018.1.2/bin。那么安装完成之后系统不会给pycharm添加系统路径,只有把终端切换
阅读全文
posted @
2019-05-28 17:06
chamie
阅读(1305)
推荐(0) 编辑
Linux下配置环境变量—— .bashrc 和 /etc/profile
摘要:转载:https://blog.csdn.net/sun8112133/article/details/79901527 首先简单说一下什么是环境变量?环境变量简单的说就是当前环境下的参数或者变量。如果说的专业一点就是指在操作系统中用来指定操作系统的一些参数。 举个我们最常见的环境变量 —— PAT
阅读全文
posted @
2019-04-03 15:38
chamie
阅读(14794)
推荐(0) 编辑
Ubuntu下新建用户
摘要:切换到root用户下: sudo su 然后添加用户: useradd -m 用户名 设置密码: passwd 用户名 完成。
阅读全文
posted @
2019-03-28 10:09
chamie
阅读(184)
推荐(0) 编辑
Ubuntu下创建新用户后,不能使用管理员用户下安装的Anaconda
摘要:解决办法: 将管理员用户下Anaconda的安装环境添加到新用户下的环境变量里,具体操作: 系统切换到新用户下: vim .bashrc #添加Anaconda的环境变量 source .bashrc #温馨提示:“./”:表示运行当前目录下的软件。
阅读全文
posted @
2019-03-22 18:16
chamie
阅读(692)
推荐(0) 编辑
Ubuntu命令行快捷启动Matlab
摘要:转载:https://blog.csdn.net/striker_v/article/details/52884485 Matlab R2015b默认安装目录/usr/local/MATLAB/R2015b/bin。那么安装完成之后系统不会给Matlab添加系统路径,只有把终端切换到安装目录/usr
阅读全文
posted @
2019-01-25 11:09
chamie
阅读(1040)
推荐(0) 编辑
用xstart远程连接linux图形用户界面
摘要:转载:https://blog.csdn.net/yabingshi_tech/article/details/51839379 双击xstart 输入:/usr/bin/xterm -ls -display $DISPLAY 假如报错: 在远程机器上安装xterm: sudo apt-get in
阅读全文
posted @
2019-01-14 16:36
chamie
阅读(4291)
推荐(0) 编辑
winscp的root连接ubuntu“拒绝访问”的解决方法
摘要:转载:https://www.cnblogs.com/weizhxa/p/10098640.html 解决: 1、修改ssh配置文件:sudo vim etc/ssh/sshd_config 在#PermitRootLogin without-password 此行下新增一行: PermitRoot
阅读全文
posted @
2019-01-11 11:34
chamie
阅读(1230)
推荐(0) 编辑
Linux报“ '/usr/bin' is not included in the PATH environment variable”解决方法
摘要:https://www.cnblogs.com/alvinwei1024/p/4811993.html https://blog.csdn.net/drbinzhao/article/details/8898799
阅读全文
posted @
2018-11-13 19:14
chamie
阅读(777)
推荐(0) 编辑