Reputation: 722
There is an option in PyCharm (==2017.2) which allow you to create virtual environments without the CLI.
But this option support virtualenv
package, does PyCharm can support virtualenvwrapprr
too ?
I asking it for later use in CLI only.
Upvotes: 1
Views: 1766
Reputation: 3699
As @phd says in comments and also as mentioned in virtualenvwrapper docs, virtualenvwrapper includes wrappers for creating and deleting virtual environments and otherwise managing your development workflow. It is somehow created for making virtualenv easier to use.
Upvotes: 1