
Python
文章平均质量分 60
开心鲨鱼
这个作者很懒,什么都没留下…
展开
-
SAS 增强型编辑器
SAS 9.4 M7 安装在 D 盘,GHOST 恢复了 C 盘的系统。(需要 mscomctl.ocx,安装了. NET 并启用)SAS 能用,但是增强型编辑器不能用。原创 2023-06-01 10:39:52 · 1330 阅读 · 0 评论 -
配置 Sublime Text 4 作为 R/Python IDE
VScode太占用内存了,在作为R IDE的时候,经常后台有13个R的Front-end进程,再开启浏览器,浏览器一会就崩溃了。RStudio不是轻便IDE的第一选择。比来比去,就只有Sublime Text。必须安装的Sublime Text插件:SendCode、Terminus。原创 2023-06-01 10:39:13 · 1259 阅读 · 0 评论 -
解决使用pip无法安装包、无限依赖警告
参考:https://blog.csdn.net/weixin_35757704/article/details/122269142,改为如下,很快安装完成!Spyder5.4.3 现在也很吃内存!Spyder+4个Python进程,占用了886.89M。安装Spyder,使用清华镜像,总是提示。8G内存的机器不够看了!原创 2023-06-01 10:39:17 · 12646 阅读 · 0 评论 -
将VScdoe的R终端替换为radian
Miniconda介绍Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few others.Mini原创 2021-04-12 21:53:42 · 1668 阅读 · 2 评论 -
Python: NumPy, Pandas学习资料
NumPy 学习资料书籍NumPy Cookbook_[Idris2012]NumPy Beginner’s Guide,3rd_[Idris2015]Python数据分析基础教程:NumPy学习指南(第2版)网络资料100 Numpy ExercisesPandas Exercisesaccompany “Pandas for Everyone”菜鸟教程:NumPy...原创 2019-09-20 16:28:43 · 379 阅读 · 0 评论 -
Jupyter Notebook不能自动打开浏览器
安装了 Winpython,运行Jupyter Notebook.exe或Jupyter lab.exe,总是不能自动打开浏览器,提示"no web browser found"解决方案一打开文件settings\.jupyter\jupyter_notebook_config.py搜索webbrowser去掉c.NotebookApp.browser = ''前的#,并将该行改为c....原创 2019-09-14 20:50:26 · 2916 阅读 · 2 评论 -
更新 Python 库文件
查看库Anaconda Navigator中启动Anaconda Prompt(或Anaconda Navigator中Environment->(base)root->Open terminal),输入 conda list 查看已经安装的库。或者在Anaconda Navigator中Environment:选择“installed”查看已经安装的包;(右键或左键)点击包名...原创 2019-06-17 22:31:15 · 967 阅读 · 0 评论 -
使用 Python
使用 PythonPython 官网及镜像官网:https://www.python.org/镜像:http://npm.taobao.org/mirrors/python/安装玩Python,将安装目录加入Windows搜索路径。配置镜像:清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com...原创 2019-04-27 21:26:49 · 193 阅读 · 0 评论 -
Sublime Text3配置为Python R LaTeX Markdown IDE
配置 Sublime Text 3 作为Python IDEIDE的基本功能:代码提醒、补全;编译文件。Sublime Text3的插件Anaconda提供代码提示、补全等功能。也提供编译方式。插件SublimeREPL在新标签页生成一个(可交互的)控制台:Tools -> SublimeREPL ->Python ->Python,在新开的标签页“*REPL*[pyt...原创 2019-04-09 17:47:48 · 700 阅读 · 0 评论 -
Python 文件读写
Python 文件读写读写文件使用内建函数open()、write()。read()方法file = open('a.txt','r') #打开文件'a.txt',返回文件对象file#print(type(file))data = file.read() #调用read方法读整个文件内容,返回字符串#print(type(data))file.close() ...原创 2019-04-08 08:42:57 · 203 阅读 · 0 评论