I can see below pip packages are installed on my Fedora 25.

```
$ /usr/bin/pip list | grep rpm
rpm-python (4.13.0.1)

$ /usr/bin/pip3 list | grep rpm
rpm-python (4.13.0.1)
```

However I want to install the pip package 
(https://github.com/rpm-software-management/rpm/tree/master/python/rpm) for my 
source compiled Python 3.6.1 from git directly.

```
$ which python3
/usr/local/python-3.6.1/bin/python3
```

Is it possible to install it?

I succeeded to install `rpm` command itself by below way.
So, it there this kind of `make` task?

```
$ git clone g...@github.com:rpm-software-management/rpm.git
$ cd rpm 
$ ./autogen.sh --noconfigure
$ ./configure --prefix="$(pwd)/dist"
$ make
$ make install
$ ./dist/bin/rpm --version
RPM version 4.13.90
```

Thanks.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/issues/244
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to