1

How can I set PyScripter up to work with IPython as the "embedded" interpreter rather than the plain Python one?
I am using portable python.

I've tried for a few hours with no success.
I imagined it's just a C/L parameter.
But that doesn't seem the case.

Help much appreciated.

Perica Zivkovic
  • 2,610
  • 24
  • 32
Trevor
  • 1,858
  • 4
  • 21
  • 28

2 Answers2

0

I don't think that this is possible as PyScripter does this based on a specified Python engine. For portable installation these settings are used and this is also what Portable Python shortcut

PyScripter-Portable.exe

does to set up the environment and configure Python engine to be used.

Perica Zivkovic
  • 2,610
  • 24
  • 32
0

I don't know if this will work but you could try the following in the embedded interpreter:

>>> from IPython import embed
>>> embed()
codeape
  • 97,830
  • 24
  • 159
  • 188