Skip to content

Commit d25be3e

Browse files
committed
Update readme
1 parent d43691e commit d25be3e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
# Conan package sample
22
This is a sample package for conan
33

4+
Remember that the scripts build.sh and build bat will select default configuration.
5+
On windows this will be the newest Visual Studio installed.
6+
7+
# Conan installation
8+
9+
## Windows
10+
This example uses powershell
11+
12+
create virtual environment
13+
`py -m venv path_to_virtualenv`
14+
15+
activate
16+
`path_to_virtualenv\Scripts\Activate.ps1`
17+
conan should now be available as a sommand
18+
19+
alternatively, without isntallation, use full path `path_to_virtualenv\Scripts\conan.exe`
20+
21+
# Linux
22+
23+
create virtual environment
24+
`py -m venv path_to_virtualenv`
25+
26+
activate (mind the dot at the beginning)
27+
`. path_to_virtualenv\Scripts\activate.sh`
28+
conan should now be available as a sommand
29+
30+
alternatively, without isntallation, use full path `path_to_virtualenv\bin\conan`

0 commit comments

Comments
 (0)