Cygwin 上的 Pyscripter
问题:如何在 Cygwin 上安装 Pyscripter?
Scenerio:我在 USB 上安装了便携式应用程序,然后在其上安装了 cygwin 便携式版本 0.9。在cygwin下,我安装了Python 2.6。我目前正在将其与空闲 IDE 一起使用,但我想使用 Pyscripter。
我无法使用便携式 python,因为我需要在 python 上安装其他模块,例如 pyevolve 和 Cantera。或者,也许有人可以让我知道如何将这些模块添加到便携式 python 中。
Question: How to install Pyscripter on Cygwin?
Scenerio: I have installed portable apps on a usb, then installed cygwin portable version 0.9 on it. Under cygwin, I have installed Python 2.6. I am curerntly using it with the idle IDE but I would like to use Pyscripter instead.
I can not use portable python because I need to install additional modules on python such as pyevolve and Cantera. Alternatively, maybe someone could let me know how to add these modules to portable python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 USB 中创建 virtualenv。只需从我们的 USB 通过 Cygwin 在任何其他计算机上将其打开即可。这不是安装 Pyscripter 的方法。但这是向你的可移植版本的 python 添加模块的方法。
You can create virtualenv in your usb. And just switch it on in any other computer via Cygwin from our usb. It is not a way to install Pyscripter. But it is way for add modules to your portable version of python.
对于尝试此操作的其他人,请注意 PyScripter 旨在在 Windows 下运行,而不是在 Linux 下运行。步骤是: (1) 在 Windows 中,安装 python 发行版 来自 python.org, (2) 在 Windows 中,安装 PyScripter。
另请注意,PyScripter 具有所需的控制台(交互式 python 解释器)窗口,以及允许添加包的基于 pip 的包管理器。例如,要将 Pandas 添加到应用程序,请执行以下操作:
将安装具有所需依赖项的正确 pandas 包。 (至少,这就是我的例子)。然后我就可以将 pandas 导入到我的应用程序中并毫无问题地使用它。
Cygwin 是一个在 Windows 下安装/运行的 Linux 环境。它出名的主要原因之一是它允许您在 Windows CMD 提示符下使用 Linux 命令。它还允许您安装/运行某些 Linux 应用程序,然后在 Cygwin(和/或 Cygwin-X 图形)环境中运行这些应用程序。例如,可以在 Cygwin 下安装/运行 Eric6(图形化 Linux python IDE)。 (我尝试过,它有效 - 但不如 Pyscripter)
就我的钱而言,我发现 Windows 下的 Pyscripter 工作得很好 - 并且比 Cygwin 下的 Eric6 好得多。我是 HTML/js/PHP 的 Notepad++ 用户,开始使用 Anaconda (Spyder) 在 Python 中进行编码。 PyScripter 比 Spyder、IDLE 或 Eric6 等更接近 NPP,而且更像我希望在 Python 世界中找到的东西,而且它可以像任何其他 Windows 应用程序一样在 Windows 下运行。
参考文献:
https://sourceforge.net/projects/pyscripter
https://github.com/pyscripter/pyscripter
For anyone else trying this, note that PyScripter is intended to run under Windows, not Linux. The steps are: (1) in Windows, install a python distribution from python.org, and (2) in Windows, install PyScripter.
Note, too, that PyScripter has the desired console (interactive python interpreter) window, and a pip-based package manager that allows adding packages. For example, to add Pandas to an app, do the following:
The correct pandas package with required dependencies will be installed. (At least, that is what happened in my case). I was then able to
import pandas
into my app and use it without any problem.Cygwin is a Linux environment that installs/runs under Windows. One of its main claims to fame is that it allows you to use Linux commands at the Windows CMD prompt. It also allows you to install/run certain Linux apps, which you then run in the Cygwin (and/or Cygwin-X graphical) environment. For example, it is possible to install/run Eric6 (a graphical Linux python IDE) under Cygwin. (I tried that, it worked - but not as great as Pyscripter)
For my money, I found that Pyscripter under Windows works great - and is much, much nicer than Eric6 under Cygwin. I am a Notepad++ user for HTML/js/PHP and started out using Anaconda (Spyder) to code in Python. PyScripter is much closer to NPP than, for e.g., Spyder or IDLE or Eric6 - and is more like what I had hoped to find in the Python world - and it simply runs under Windows like any other Windows app.
References:
https://sourceforge.net/projects/pyscripter
https://github.com/pyscripter/pyscripter