[Python] Qualcuno usa ipython come interprete?
Carlo Miron
miron a python.it
Gio 14 Mar 2024 09:02:12 CET
Ciao Gabriele
Il giorno gio 14 mar 2024 alle ore 08:23 Gabriele Battaglia
<iz4apu a libero.it> ha scritto:
>
> Se sรฌ, continuate a leggere please, altrimenti, tuffo doppio carpiato
> nel cestino.
Uso IPython 8.21.0 su Python 3.12.2 (su linux)
> [...]
> E' un problema mio?
Qui si comporta come previsto
```py
cm a heap:~
$ ipython
Python 3.12.2 (main, Feb 11 2024, 21:08:54) [GCC 13.2.0]
Type 'copyright', 'credits' or 'license' for more information
IPython 8.21.0 -- An enhanced Interactive Python. Type '?' for help.
>>> a=88
time: 2.99 ms (started: 2024-03-14 08:51:23 +01:00)
>>> %store a
Stored 'a' (int)
time: 1.23 ms (started: 2024-03-14 08:51:32 +01:00)
>>> %store
Stored variables and their in-db values:
a -> 88
time: 1.54 ms (started: 2024-03-14 08:51:38 +01:00)
>>>^D
cm a heap:~
$ ipython
Python 3.12.2 (main, Feb 11 2024, 21:08:54) [GCC 13.2.0]
Type 'copyright', 'credits' or 'license' for more information
IPython 8.21.0 -- An enhanced Interactive Python. Type '?' for help.
>>> a
NameError: name 'a' is not defined
time: 3.06 ms (started: 2024-03-14 08:52:09 +01:00)
>>> %store
Stored variables and their in-db values:
a -> 88
time: 1.48 ms (started: 2024-03-14 08:52:32 +01:00)
>>> %store -r
time: 9.51 ms (started: 2024-03-14 08:52:42 +01:00)
>>> a
88
time: 4.5 ms (started: 2024-03-14 08:52:45 +01:00)
```
Non saprei dirti cosa potrebbe essere successo nel tuo caso; se
perdere il valore delle tue variabili persistenti non รจ un problema,
potresti provare a cancellare i file contenuti nella subdirectory
`db/autorestore` all'interno della configurzione di ipython. Nel mio
caso,
```sh
cm a heap:~
$ ls -lh ~/.ipython/profile_default/db/autorestore
total 4.0K
-rw-rw-r-- 1 cm cm 5 Mar 14 08:51 a
```
HTH,
ใ
--
!!!! THE ๐บ-WARE LICENSE (Revision ใท):
<miron๐๐.๐ฎ๐น> wrote this ๐ง. As long as you retain this notice you can
do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a ๐บ in return. โ Carlo
Maggiori informazioni sulla lista
Python