-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation without conda #34
Comments
Hi @jenniferlu717! 👋 pytaxonkit should be fairly straightforward to install without Conda. It's all contained in a single module (file) that can either be placed in the environment (
Really? taxonkit is implemented in Go, not Python, so I'd be surprised if it can be installed with pip. Let me know if I can answer any specific questions with installation or integration. |
Thanks for the quick response
|
Accept my apologies, it looks like my comments above weren't accurate. Out of the box, pytaxonkit uses versioneer for managing software version numbers with git. So using pytaxonkit will require either making a small change to Option 1You should be able to make a simple edit to @@ -52,10 +52,7 @@
from tempfile import NamedTemporaryFile
from warnings import warn
-from _version import get_versions
-
-__version__ = get_versions()["version"]
-del get_versions
+__version__ = 0.9
class TaxonKitCLIError(RuntimeError): Option 2You can download the latest version tarball from github and run
This latter option installs |
Hello, I am trying to see if I can install this software without using conda as I'm trying to develop a toolset that has the option of installing with/without conda.
I can install taxonkit using pip but it doesnt seem that pip install works with this
The text was updated successfully, but these errors were encountered: