随笔分类 - python
摘要:$conda activate $conda deactivate
阅读全文
摘要:综合上述两个帖子: https://www.cnblogs.com/huadongw/p/6161145.html https://blog.csdn.net/u011587516/article/details/78995186 先把之前安装的xgboost都卸载干净: pip uninstall
阅读全文
摘要:https://blog.csdn.net/Super_jm_/article/details/81947563 使用pip安装文件时候提示 ImportError: No module named setuptools 用一句命令就可以解决 sudo apt-get install python-
阅读全文
摘要:# -*- coding: utf-8 -*- import numpy as np import matplotlib.pyplot as plt #X轴,Y轴数据 y = [0.3,0.4,2,5,3,4.5,4] x = range(0,len(y)) plt.figure(figsize=(
阅读全文