Skip to content

Commit cbe28cb

Browse files
README How to develop section now also works on Apple M1 (#940)
1 parent aedffe0 commit cbe28cb

File tree

3 files changed

+46
-3
lines changed

3 files changed

+46
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,8 @@ conda env create -f ./conda/environments/datafusion-dev.yaml -n datafusion-dev
179179
conda activate datafusion-dev
180180
```
181181

182+
Or alternatively, if you are on an OS that supports CUDA Toolkit, you can use `-f ./conda/environments/datafusion-cuda-dev.yaml`.
183+
182184
Bootstrap (Pip):
183185

184186
```bash
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
channels:
19+
- conda-forge
20+
dependencies:
21+
- black
22+
- flake8
23+
- isort
24+
- maturin>=1.5.1
25+
- mypy
26+
- numpy
27+
- pyarrow>=11.0.0
28+
- pytest
29+
- toml
30+
- importlib_metadata
31+
- python>=3.10
32+
# Packages useful for building distributions and releasing
33+
- mamba
34+
- conda-build
35+
- anaconda-client
36+
# Packages for documentation building
37+
- sphinx
38+
- pydata-sphinx-theme==0.8.0
39+
- myst-parser
40+
- jinja2
41+
# GPU packages
42+
- cudf
43+
- cudatoolkit=11.8
44+
name: datafusion-dev

conda/environments/datafusion-dev.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,4 @@ dependencies:
3838
- pydata-sphinx-theme==0.8.0
3939
- myst-parser
4040
- jinja2
41-
# GPU packages
42-
- cudf
43-
- cudatoolkit=11.8
4441
name: datafusion-dev

0 commit comments

Comments
 (0)