Commit 52f4135 1 parent 1a3783c commit 52f4135 Copy full SHA for 52f4135
File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
- inculde *.txt
1
+ include *.txt
2
2
include *.cmake
3
3
graft CMake
4
4
graft third_party
Original file line number Diff line number Diff line change @@ -16,10 +16,16 @@ conda create --name pyveloxenv python=3.7
16
16
conda activate pyveloxenv
17
17
```
18
18
19
+ ### Install PyVelox
20
+
21
+ You can install PyVelox from pypi without the need to build it from source as we provide wheels for Linux and macOS (x86_64):
22
+ ```
23
+ pip install pyvelox
24
+ ```
19
25
20
26
### From Source
21
27
22
- Currently PyVelox can only be built from source. You will need Python 3.7 or later and a C++17 compiler.
28
+ You will need Python 3.7 or later and a C++17 compiler to build PyVelox from source .
23
29
24
30
25
31
#### Install Dependencies
@@ -33,7 +39,8 @@ On Linux
33
39
Run the script referenced [ here] ( https://github.com/facebookincubator/velox#setting-up-on-linux-ubuntu-2004-or-later ) to install on linux.
34
40
35
41
36
- #### Install PyVelox
42
+ #### Build PyVelox
43
+
37
44
For local development, you can build with debug mode:
38
45
```
39
46
make python-build
Original file line number Diff line number Diff line change 32
32
33
33
ROOT_DIR = Path (__file__ ).parent .resolve ()
34
34
35
- with open ("README.md" ) as f :
35
+ with open ("pyvelox/ README.md" ) as f :
36
36
readme = f .read ()
37
37
38
38
You can’t perform that action at this time.
0 commit comments