From ea9c41e9bee45e1800a0d633086e69ca835bad15 Mon Sep 17 00:00:00 2001 From: zfletch Date: Fri, 30 Nov 2018 09:37:47 -0500 Subject: [PATCH] update asdf command in readme When I run the command `asdf global 3.6.2 2.7.13`, I get the error message `No such plugin: 3.6.2`. I think it's missing `python` after `global`. The command `asdf global python 3.6.2 2.7.13` works for me. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c44b03c..c4cbb21 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ A common request for Python is being able to use the `python2` and `python3` com This can be achieved by setting multiple versions of Python, for example with ``` -asdf global 3.6.2 2.7.13 +asdf global python 3.6.2 2.7.13 ``` This feature is experimental but should be working well enough for most use cases.