This is an automated email from the ASF dual-hosted git repository.
dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git
The following commit(s) were added to refs/heads/master by this push:
new 9d7eb14 Update README.md
9d7eb14 is described below
commit 9d7eb146bff5103e6e7c45fa752d5afcc744e9d9
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Sat Jan 28 12:14:09 2023 -0500
Update README.md
---
README.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/README.md b/README.md
index f409c69..266c20b 100755
--- a/README.md
+++ b/README.md
@@ -80,3 +80,18 @@ MFT is capable of auto detecting directory copying and file
copying based on the
### Troubleshooting and Issue Reporting
This is our very first attempt release Airavata MFT for community usage and
there might be lots of corner cases that we have not noticed. All the logs of
MFT service are available in
```~/.mft/Standalone-Service-0.01/logs/airavata.log```. If you see any error
while using MFT, please report that in our Github issue page and we will
respond as soon as possible. We really appreciate your contribution as it will
greatly help to improve the stability of the product.
+
+#### Common issues
+
+- Following error can be noticed if you have a python version which is less
than 3.10
+```
+ ERROR: Could not find a version that satisfies the requirement
airavata-mft-cli (from versions: none)
+ ERROR: No matching distribution found for airavata-mft-cli
+```
+If the Error still occurs after installing the right python version, try
creating a virtual environemnt
+```
+python3.10 -m venv venv
+source venv/bin/activate
+pip install airavata-mft-client
+```
+