Centos下管理Python多环境

在 CentOS 系统上管理多个 Python 版本,通常有几种方法可以选择:

Read more   2023/12/29 15:11 下午 posted in  Python

MAC 如何卸载 Python

Mac 自带的 Python 已经能够满足我们的需要了,因此很多同学在安装完 Python 之后,又想要将其删除,或者称之为卸载。对于删除 Python,我们首先要知道其具体都安装了什么,实际上,在安装 Python 时,其自动生成:

  • Python framework,即 Python 框架;
  • Python 应用目录;
  • 指向 Python 的连接。
Read more   2020/05/11 15:17 下午 posted in  Python

Mac上Django2安装mysqlclient失败 解决方案

今天安装了一下午的mysqlclient一直失败,直到晚上,现在把处理的流程记录一下。

Read more   2019/07/18 22:28 下午 posted in  Python Django

命令迁移模块

生成requirements.txt文件 保存当前环境所依赖的类库

pip freeze >requirements.txt
2019/02/15 08:15 上午 posted in  Python

更新anaconda及所有包

##################################
更新conda
conda update -n base -c defaults conda

更新 anaconda
conda update anaconda

更新所有包:注意是两个横线“-”
conda update --all
##################################

# 添加清华源
# 执行以下命令
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

##################################
2019/02/14 09:03 上午 posted in  Python

Python 正则表达式

关于python的正则表达式

Read more   2018/05/28 14:29 下午 posted in  Python

Django 的基本操作

  1. 安装django

    pip3 install django
    
Read more   2018/05/27 00:41 上午 posted in  Django