We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca3548 commit b6db740Copy full SHA for b6db740
tools/provision
@@ -116,6 +116,9 @@ the Python version this command is executed with."""
116
venv_dir,
117
venv_exec_dir,
118
'activate')
119
+ # We make the path look like a Unix path, because most Windows users
120
+ # are likely to be running in a bash shell.
121
+ activate_command = activate_command.replace(os.sep, '/')
122
print('\nRun the following to enter into the virtualenv:\n')
123
print(bold + ' source ' + activate_command + end_format + "\n")
124
0 commit comments