Linux
狮子王量化
量化投资
展开
-
【Linux】卸载Linux自带python2
Linux卸载自带python:1.强制删除已安装python及其关联rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps2.删除残余文件whereis python|xargs rm -frvLiunx安装python3:先进入或者创建一个文件夹,比如 cd /home1.下载python3wget...原创 2020-01-18 07:32:07 · 8766 阅读 · 1 评论 -
【Linux】pip is configured with locations that require TLS/SSL, however the ssl module in Python is no
1.问题描述在linux中安装完 Python.7后,使用 pip3(Python3.x自带)安装模块时,出现以下异常,导致安装失败:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.2.问题原因当前行系统没有 op...原创 2019-11-24 00:23:36 · 8142 阅读 · 3 评论 -
【Linux】解决克隆虚拟机Linux后eth0消失的问题
1.删除 /etc/sysconfig/network-script/ifcfg-eth0 中的UUID和HUADDR2.配置IP地址3.直接删除 rm -rf /etc/udev/rules.d/70-persistent-net.rules4.重启 reboot原创 2018-03-07 20:33:03 · 578 阅读 · 0 评论 -
【Linux】Linux常用命令
Linux常用命令操作1.日常操作命令pwd 查看当前所在工作目录date 查看当前系统时间who 查看当前在线用户last 查看最近的历史登录记录2.文件系统操作ls / 查看根目录下的子节点(文件和文件夹)信息显示文件ls -all -a是显示隐藏文件 -l是以更详细的列表显示切换目录cd /home 切换目录...原创 2018-03-06 17:11:21 · 355 阅读 · 0 评论