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
Package for working with anaconda environments in Fabric
Usage:
import fabriconda
def setup():
fabriconda.install()
def deploy():
put('environment.yml', '/path/to/environment.yml')
fabriconda.create_env('/path/to/environment.yml', 'name')
with fabriconda.env('name'):
pass # do stuff in the environment
About
Python package for working with anaconda environments in Fabric