You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to test reliably, I recommend pinning your Python pip dependencies. virtualenv is recommended for this practice.
#create a .venv directory in the current directory
virtualenv --python $(type -P python2.7) .venv
#activate the virtual environmentsource .venv/bin/activate
#all python pip changes only happen in the virtualenv .venv directory#upgrade the version of pip
pip install -U pip
pip install ansible
pip freeze > requirements.txt
In order to test reliably, I recommend pinning your Python pip dependencies.
virtualenv
is recommended for this practice.See also:
requirements.txt
.virtualenv
.This method makes for more reliable and transparent testing/development.
The text was updated successfully, but these errors were encountered: