You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/02/18 22:30:41 UTC

[GitHub] [arrow-cookbook] westonpace commented on a change in pull request #150: Small fixes for c++

westonpace commented on a change in pull request #150:
URL: https://github.com/apache/arrow-cookbook/pull/150#discussion_r810378988



##########
File path: cpp/CONTRIBUTING.md
##########
@@ -120,7 +120,22 @@ If you are using conda then there is file `cpp/requirements.yml` which can be
 used to create an environment for recipe development with the command:
 
 ```
-conda env create --file cpp/environment.yml
+conda env create -f cpp/environment.yml
+```
+
+There may be a conda-lock file available for your platform. Use this instead to
+avoid having to perform the dependency resolution solve.
+
+```
+conda create -n cookbook-cpp --file cpp/conda-osx-arm64.lock
+```
+
+To update dependencies modify `cpp/requirements.yml` and then run
+
+```
+cd cpp
+conda-lock --file environment.yml --kind explicit --platform osx-arm64
+conda-lock -f environment.yml -p linux-aarch64 -p linux-64 -p osx-arm64

Review comment:
       Wouldn't you only run the second of these two commands?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org