Changes for page VirtualEnv

Last modified by David De La Harpe Golden on 2026/05/17 17:37

From version 8.1
edited by David De La Harpe Golden
on 2026/05/17 16:17
Change comment: There is no comment for this version
To version 7.1
edited by David De La Harpe Golden
on 2026/05/17 16:16
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -21,8 +21,6 @@
21 21  
22 22  {{code language="bash"}}
23 23  #!/bin/bash
24 -# make a new python venv:
25 -# mkve SomeVenv
26 26  
27 27  if [ -e "$1" ] ; then
28 28   echo >&2 "Already exists. Use python -m venv ... directly for complex args."
... ... @@ -38,8 +38,6 @@
38 38  {{code language="bash"}}
39 39  
40 40  #!/bin/bash
41 -# use an existing python venv in a subshell, exit to exit:
42 -# ve SomeVenv
43 43  
44 44  if [ -f "$1/bin/activate" ]; then
45 45   exec bash --rcfile <(cat ~/.bashrc $1/bin/activate)
... ... @@ -50,7 +50,7 @@
50 50  {{/code}}
51 51  
52 52  
53 -== Shell Prompt ==
49 +## Shell Prompt ##
54 54  
55 55  I have a fancy non-default prompt in my ##~/.bashrc## that shows a little snake if in a python vm
56 56