From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Alex Bennée" <alex.bennee@linaro.org>
Cc: Fam Zheng <fam@euphon.net>, qemu-devel@nongnu.org
Subject: Re: [PATCH v1 6/6] travis: install homebrew python for OS X
Date: Wed, 8 Jan 2020 11:48:12 +0100 [thread overview]
Message-ID: <2313ed3f-ae42-c935-6a7b-a7ddfaa02720@redhat.com> (raw)
In-Reply-To: <87ftgqjuv2.fsf@linaro.org>
On 1/8/20 8:00 AM, Alex Bennée wrote:
> Philippe Mathieu-Daudé <philmd@redhat.com> writes:
>> On 1/7/20 2:53 PM, Alex Bennée wrote:
>>> Our python3 requirements now outstrip those of the build.
>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>> ---
>>> .travis.yml | 1 +
>>> 1 file changed, 1 insertion(+)
>>> diff --git a/.travis.yml b/.travis.yml
>>> index 848a2714efe..a86ca34f79d 100644
>>> --- a/.travis.yml
>>> +++ b/.travis.yml
>>> @@ -57,6 +57,7 @@ addons:
>>> - glib
>>> - pixman
>>> - gnu-sed
>>> + - python
>>> update: true
>>>
>>
>> This doesn't seem enough, I'm getting:
>>
>> ./configure --disable-docs --disable-tools
>> ERROR: Cannot use '/usr/local/bin/python', Python >= 3.5 is required.
>>
>> Use --python=/path/to/python to specify a supported Python.
>>
>> Apparently we don't set this in PATH ourselves.
>
> It looks like brew fell over:
>
> ==> Downloading https://homebrew.bintray.com/bottles/python-3.7.6_1.mojave.bottl
>
> ==> Downloading from https://akamai.bintray.com/64/643d627c2b4fc03a3286c397d2992
>
> ######################################################################## 100.0%
>
> ==> Pouring python-3.7.6_1.mojave.bottle.tar.gz
>
> Error: The `brew link` step did not complete successfully
>
> The formula built, but is not symlinked into /usr/local
>
> Could not symlink Frameworks/Python.framework/Headers
>
> Target /usr/local/Frameworks/Python.framework/Headers
>
> is a symlink belonging to python@2. You can unlink it:
>
> brew unlink python@2
>
> To force the link and overwrite all conflicting files:
>
> brew link --overwrite python
>
> To list all files that would be deleted:
>
> brew link --overwrite --dry-run python
>
> Possible conflicting files are:
>
> /usr/local/Frameworks/Python.framework/Headers -> /usr/local/Cellar/python@2/2.7.17/Frameworks/Python.framework/Headers
>
> /usr/local/Frameworks/Python.framework/Python -> /usr/local/Cellar/python@2/2.7.17/Frameworks/Python.framework/Python
>
> /usr/local/Frameworks/Python.framework/Resources -> /usr/local/Cellar/python@2/2.7.17/Frameworks/Python.framework/Resources
>
> /usr/local/Frameworks/Python.framework/Versions/Current -> /usr/local/Cellar/python@2/2.7.17/Frameworks/Python.framework/Versions/Current
>
> ==> /usr/local/Cellar/python/3.7.6_1/bin/python3 -s setup.py --no-user-cfg insta
>
> ==> /usr/local/Cellar/python/3.7.6_1/bin/python3 -s setup.py --no-user-cfg insta
>
> ==> /usr/local/Cellar/python/3.7.6_1/bin/python3 -s setup.py --no-user-cfg insta
>
> ==> Caveats
>
> Python has been installed as
>
> /usr/local/bin/python3
Based on this I tried:
-- >8 --
before_script:
- - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then export
PATH="/usr/local/opt/ccache/libexec:$PATH" ; fi
+ - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then export
PATH="/usr/local/opt/ccache/libexec:$PATH" BASE_CONFIG="$BASE_CONFIG
--python=/usr/local/bin/python3"; fi
- if command -v ccache ; then ccache --zero-stats ; fi
- mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
- ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log
&& exit 1; }
---
Still:
../configure: line 1845: /usr/local/bin/python3: No such file or directory
ERROR: Cannot use '/usr/local/bin/python3', Python >= 3.5 is required.
Use --python=/path/to/python to specify a supported Python.
>
> Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
>
> `python3`, `python3-config`, `pip3` etc., respectively, have been installed into
>
> /usr/local/opt/python/libexec/bin
>
> If you need Homebrew's Python 2.7 run
>
> brew install python@2
>
> You can install Python packages with
>
> pip3 install <package>
>
> They will install into the site-package directory
>
> /usr/local/lib/python3.7/site-packages
>
> See: https://docs.brew.sh/Homebrew-and-Python
>
> ==> Summary
>
> 🍺 /usr/local/Cellar/python/3.7.6_1: 3,977 files, 60.8MB
>
next prev parent reply other threads:[~2020-01-08 10:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-07 13:53 [PATCH v1 0/6] current testing/next (python and other fixes) Alex Bennée
2020-01-07 13:53 ` [PATCH v1 1/6] hw/i386/x86-iommu: Add missing stubs Alex Bennée
2020-01-07 14:57 ` Thomas Huth
2020-01-07 13:53 ` [PATCH v1 2/6] tests/vm: update openbsd to release 6.6 Alex Bennée
2020-01-07 13:53 ` [PATCH v1 3/6] freebsd: use python37 Alex Bennée
2020-01-07 13:53 ` [PATCH v1 4/6] travis.yml: avocado: Print logs of non-pass tests only Alex Bennée
2020-01-07 13:53 ` [PATCH v1 5/6] travis.yml: Detach build and test steps Alex Bennée
2020-01-07 15:24 ` Thomas Huth
2020-01-07 13:53 ` [PATCH v1 6/6] travis: install homebrew python for OS X Alex Bennée
2020-01-07 15:18 ` Marc-André Lureau
2020-01-07 19:10 ` Philippe Mathieu-Daudé
2020-01-08 7:00 ` Alex Bennée
2020-01-08 10:48 ` Philippe Mathieu-Daudé [this message]
2020-01-08 10:58 ` Daniel P. Berrangé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2313ed3f-ae42-c935-6a7b-a7ddfaa02720@redhat.com \
--to=philmd@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=fam@euphon.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).