pycharm

Cannot find VM options file (Pycharm Community 5.03)

给你一囗甜甜゛ 提交于 2021-02-04 16:16:08
问题 Whenever I attempt to start Pycharm i get the message: Cannot find VM options file. Pycharm does not work because of this. 回答1: I suppose you're talking about the first launch after you have downloaded it. Then it's important that you run pycharm.sh from the bin folder. The vm options file is also located there and the path in the script is relative. 回答2: the vm options file is missing, you may manually create one: pycharm/bin/pycharm.exe.vmoptions https://intellij-support.jetbrains.com/hc/en

全家桶通用激活码activation code(支持idea,pycharm,webstorm,phpstorm)

心已入冬 提交于 2021-02-04 16:11:34
免修改hosts文件哦,如果修改过请删除网址再激活 (更新日期:2月1号) 温馨提示:激活码支持idea,pycharm,webstorm, php storm激活 (注意:如果激活后还显示cancelled,请重启一下软件就可以了) 激活码会定期更新,后续直接在公众号「Python爬虫数据分析挖掘」提取:回复关键词 “激活码” 获取 来源: oschina 链接: https://my.oschina.net/u/4638454/blog/4945153

任意修改jupyter notebook默认 “文件存储路径”,本文太赞!

╄→尐↘猪︶ㄣ 提交于 2021-02-04 13:35:34
Python实战社群 Java实战社群 长按识别下方二维码, 按需求添加 扫码关注添加客服 进Python社群▲ 扫码关注添加客服 进Java社群 ▲ 作者丨黄伟呢 来源丨数据分析与统计学之美 之前老有人问我,jupyter notebook默认存储路径在C盘,他想更换jupyter的默认存储路径,应该怎么做呢?我这里想说的是,其实并没有必要。学完这篇文章,轻松解决这个问题! jupyter notebook的使用,在python学习过程中很有必要。很多人问使用pycharm好,还是使用jupyter好?这里我想说的,作为一个学习者,不要太关注使用啥编辑器,而去耽误学习时间。这里我分享一下我的学习经验:作为一个学习者,最好使用jupyter notebook,这个交互性比较好,你写一句、运行一句、就会显示一句结果。对于学习pycharm,等你以后做一个个项目的时候,再使用那个,这样方便进行项目管理! 在实际的学习中,你可能会多次用到jupyter,因此觉得修改jupyter的存储路径很有必要, 文件确实是都堆放在C盘不太好,但是也没有必要画这么大的功夫去修改这个 “文件存储路径” ,你可能弄了一下午,也许还没有成功,这种吃力不讨好的事儿,咋们不干。 下面要介绍的修改 “文件存储路径” 的方法,很好的解决的这一个问题。 ① 打开电脑搜索框,输入“CMD” ② 找到你的“任意

Why is the Run option disabled on PyCharm?

青春壹個敷衍的年華 提交于 2021-02-04 10:33:25
问题 I observed that on a new project the Run option is disabled and I expected to be able to run a script without having to manually add a configuration for it. 回答1: You can't run without a configuration, however temporary configuration can be created automatically if you use Run context menu option in the script editor. 回答2: If you're creating a project from existing source: and If the existing source directory contains a lot of data/files: the Run option (and others, assumably) are disabled

Pycharm cann't find the packages or modules installed with pip on windows

孤者浪人 提交于 2021-02-02 09:27:48
问题 Pycharm doesn't sync with the pip packages though i have added the path in environment variable. The following elements will clear the topic: already installed sklearn package: pycharm can't find that package: environment variable: 回答1: The thing is that pycharm creates all of your projects inside a virtual environment. So the packages that you installed outside the virtual environment(global site packages) does not get inherited in to your project. There is a simple solution for that. When

PyCharm快捷键

喜你入骨 提交于 2021-02-02 07:00:12
Pycharm快捷键 #最重要的快捷键 1. ctrl+shift+A:万能命令行 2. shift两次:查看资源文件 #新建工程第一步操作 1. module设置把空包分层去掉,compact empty middle package 2. 设置当前的工程是utf-8,设置的Editor-->File Encodings-->全部改成utf-8, #注释 1. ctrl+/:单行注释 #光标操作 1. ctrl+alt+enter:向上插入 2. shift+enter:向下插入 3. end:光标行尾 #操作代码 1. ctrl+d:复制粘贴一行 2. ctrl+y:删除一行 3. shift+F6:重命令 5. ctrl+O:复写代码 #格式代码及其他功能 1. ctrl+alt+L:格式代码 2. 在代码中使用alt+insert:Generate,可以get/set等操作 3. ctrl+alt+T:添加try/catch 4. ctrl+alt+M:抽取代码 5. ctrl+alt+F:变量抽取全局变量 1. 还需要设置前缀:Editor-->code style-->java-->code Genertion-->设置Field的前缘为m添加 6. ctrl+alt+v:方法体内值抽取成变量 8. 保存成模板:ctrl+shift+L,这个是自定义的(save as

pycharm 远程开发配置

旧城冷巷雨未停 提交于 2021-02-02 06:43:47
原文链接: pycharm 远程开发配置 在本地pycharm连接到服务器端进行远程开发 安装 ftp centos 默认安装了 ftp,毕竟 centos 主要针对服务器,Ubuntu 需要另外安装。 ubuntu 安装 ftp 也很简单,只需要安装程序,不需要额外的配置。 1. 有问题时完全卸载 vsftpd sudo apt-get purge vsftpd 发现锁错误 E: 无法获得锁 /var/lib/dpkg/lock - open (11: 资源暂时不可用),使用下面的强制解锁。 sudo rm /var/cache/apt/archives/lock sudo rm /var/lib/dpkg/lock 2. 安装 vsftpd sudo apt-get install vsftpd 3. 启动停止重启服务 sudo /etc/init.d/vsftpd start # 启动 sudo /etc/init.d/vsftpd stop # 停止 sudo /etc/init.d/vsftpd restart # 重启 使用 xftp 工具登录 ftp,加密方式是 sftp。 pycharm -ftp 设置Python执行路径为远程服务器端 注意文件夹的映射上面是映射到/py之后又加了mapping, 所以执行的话也得加style路径 选择上传或者下载

2020最新idea永久激活教程

て烟熏妆下的殇ゞ 提交于 2021-01-31 21:37:32
注:以下为 idea 最新版本 2020.3.2 的永久激活教程,请按照如下步骤安装激活 (webstorm、pycharm 激活方法相同)。 步骤一、下载安装包 去到 idea 官网 https://www.jetbrains.com/idea/download/ 下载最新的 2020.3.2 版本安装包,如下图所示, 选择 Ultimate 最终版,Download 下载。如上,我选择的是 Windows 版的,Mac 以及 Linux 版同样的可以切换到对应栏下载。 步骤二、 安装并选择试用30天 下载完成之后,正常安装即可。 注意: 如果有旧版本 idea 存在,需要先卸载旧版本才可以安装 2020.3.2 最新版本。 安装完成之后,立即运行。然后选择试用30天,如下图所示。 步骤三、激活使用 1、依次打开菜单栏:File -> Settings -> Plugins -> Install Plugin from Disk 。如下图所示, 2、然后找到破解补丁文件 BetterIntelliJ.zip, 注意是一个zip的压缩包,请不要解压( 破解文件文末领取 )。 点击 OK 之后,会有一个如下的提示,需要我们重启idea。 注意: 请注意一定要重启 idea ,否则可能不生效。 3、重启 idea 之后,打开菜单栏 Help -> Edit Custom VM

Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试

巧了我就是萌 提交于 2021-01-31 00:31:12
创建了一个Django项目,但是运行时报错 "D:\Program Files (x86)\JetBrains\PyCharm 2016.2.1\bin\runnerw.exe" D:\Python35-32\python.exe "D:\Program Files (x86)\JetBrains\PyCharm 2016.2.1\helpers\pydev\pydevd.py" --multiproc --qt-support --client 127.0.0.1 --port 52288 --file D:/PycharmProjects/MyDjangoProject/manage.py runserver 8000 pydev debugger: process 4888 is connecting Connected to pydev debugger (build 162.1628.8) pydev debugger: process 5360 is connecting Performing system checks... System check identified no issues (0 silenced). You have 13 unapplied migration(s). Your project may not work properly

pycharm doesn't recognize pygame package

别来无恙 提交于 2021-01-29 22:11:49
问题 I'm using mac OsX 10.8.2 , pyCharm 2.7.1 . python 2.7.2 I want to use pygame package with pycharm . I followed the instructions on the pygame site and installed pygame 1.9.1 successfully. When I write "import pygame" pycharm doesn't find the package. I tried installing the latest updates of python, pycharm and pygame. I tried using the "install" window in the preferences. It installed "pygamess", "pygameui" and "pyviewx.pygame", but when I try to instal "pygame_loaders" it writes "Install