Skip to content

Commit ce7c33f

Browse files
author
Guillermo Alvarez
committed
#comment improve the README.md
1 parent 9ae89d8 commit ce7c33f

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

README.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# python-vagrant
2-
A simply Vagrant instance to run python/django projects, this project can be executed under Windows, Linux or OSX
2+
3+
A simply Vagrant instance to run python/django projects, this project can be executed under Linux, OSX or Windows.
34

45
### Requirements
56

@@ -8,20 +9,39 @@ A simply Vagrant instance to run python/django projects, this project can be exe
89

910
### Set Up
1011

11-
Open your terminal and located in the project dir
12+
Open your terminal and go to the project dir
1213

1314
This command creates or start the vagrant instance
1415
```sh
1516
$ vagrant up
1617
```
1718

18-
This command allow to login on Linux virtual machine to play with it as you wish
19+
This command allow to login on Linux virtual machine.
1920

2021
```sh
2122
$ vagrant ssh
2223
```
24+
This installation creates a python virtualenv called: **env**, to use and install packages on it do the following:
25+
26+
```sh
27+
$ workon env
28+
(env)$ cd vagrant
29+
(env)$ pip install package-name
30+
```
31+
32+
To turn the vagrant instance off execute next command:
33+
34+
```sh
35+
$ vagrant halt
36+
```
37+
38+
and if you want to destroy the vagrant instance, execute next command
39+
40+
```sh
41+
$ vagrant destroy
42+
```
2343

2444
[Virtualbox]:https://www.virtualbox.org/
2545
[Vagrant]:https://www.vagrantup.com/
2646

27-
**Free Software, Enjoy it and improve it!**
47+
**Enjoy it and improve it!**

0 commit comments

Comments
 (0)