You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Jordi,
We are trying to run musicnn but are having issues with both libraries numpy and librosa versions. The problem is numpy==1.14.5 which is quite deprecated, and it is needed to run librosa==0.7.0.
Any suggestion on how to fix it?
The text was updated successfully, but these errors were encountered:
Ok, I managed to run the musicnn by moving all the docker image back to 2020
Dockerfile
# Use an official Miniconda3 image as a parent image
FROM continuumio/miniconda3:4.10.3
# Set the working directory to /app
WORKDIR /app
# Create a conda environment with Python 3.6 and activate it
RUN conda create --name myenv python=3.6
SHELL ["conda", "run", "-n", "myenv", "/bin/bash", "-c"]
# Install any needed packages specified in requirements.txt
RUN conda install -y numpy==1.14.5
# Make port 80 available to the world outside this container
EXPOSE 80
# Define environment variable
ENV NAME World
# Copy the current directory contents into the container at /app
COPY . /app
Hi Jordi,
We are trying to run musicnn but are having issues with both libraries numpy and librosa versions. The problem is numpy==1.14.5 which is quite deprecated, and it is needed to run librosa==0.7.0.
Any suggestion on how to fix it?
The text was updated successfully, but these errors were encountered: