cybertensor/Makefile

SHELL:=/bin/bash

init-venv:
	python3 -m venv venv && source ./venv/bin/activate

clean-venv:
	source ./venv/bin/activate && \
	pip freeze > make_venv_to_uninstall.txt && \
	pip uninstall -r make_venv_to_uninstall.txt && \
	rm make_venv_to_uninstall.txt

clean:
	rm -rf dist/ && \
	rm -rf build/ && \
	rm -rf cybertensor.egg-info/ && \
	rm -rf .pytest_cache/ && \
	rm -rf lib/

install:
	python3 -m pip install .

install-dev:
	python3 -m pip install '.[dev]'

install-cubit:
	python3 -m pip install '.[cubit]'

Synonyms

Makefile
space-pussy/Makefile
cyberindex/Makefile
cyb/Makefile
go-cyber/Makefile
cyb/cyb/Makefile
space-pussy/contrib/devtools/Makefile
go-cyber/contrib/devtools/Makefile
space-pussy/networks/local/Makefile
go-cyber/x/rank/cuda/Makefile
space-pussy/x/rank/cuda/Makefile

Neighbours