Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
What happens if I do python3 -m venv venv1 python3 -m venv venv2 source venv1/bin/activate source venv2/bin/activate Which venv(s) am I now in?
#2: Post edited
- What happens if I do
- ```
python3 -m venv .venv1python3 -m venv .venv2source .venv1/bin/activatesource .venv2/bin/activate- ```
- Which venv(s) am I now in?
- What happens if I do
- ```
- python3 -m venv venv1
- python3 -m venv venv2
- source venv1/bin/activate
- source venv2/bin/activate
- ```
- Which venv(s) am I now in?
