Ipython-Config
I use my ipython terminal daily. It’s my go to way of running python most of
the time. After you use it for a little bit you will probably want to setup a
bit of your own configuration.
install ipython # [1]
Activate your virtual environment [2] of choice and pip install it. Any time you
are running your project in a virtual environment, you will need to install
ipython inside it to access those packages from ipython.
pip install ipython
You are using a virtual environment right? Virtual environments like venv or
conda can save you a ton of pain down the road.
profile_default # [3]
When you install ipython you start out with no config at all. Runnign ipython profile create will start a new profile called profile_default that contains
all of the default configuration.
ipython profile create
This command will create a directory ~/.ipython/profile_default
multiple configurations # [4]
You can run multiple configurations by naming them with ipython profile create [profile_name...