Python Forum

Full Version: Python 3.9 alpha how to install psutil?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[inline]# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi

# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions

# Load pyenv automatically when shell start
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
[/inline]

Is this correct file? i did not get its to works.
Pages: 1 2